div.addf-tax-exempt-form-outer-div {
    box-sizing: border-box;
    transition: all 0.3s linear;
}

div.addf-tax-exempt-form-container {
    max-width: 80rem;
}

div.addf-tax-exempt-form-container input[type=text],
div.addf-tax-exempt-form-container textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ebebeb;
    border-top: 2px solid #d2d2d2;
    resize: vertical;
    background-color: #fafafa;
    font-family: var(--font-body-family);
    font-size: inherit;
}

div.addf-tax-exempt-form-container label {
    padding: 12px 12px 12px 0;
    display: inline-block;
    font-weight: bold;
}

div.addf-tax-exempt-form-container button[type=submit] {
    background-color: black;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    float: right;
}

div.addf-tax-exempt-form-container button[type=submit]:hover {
    background-color: rgb(33, 33, 33);
}



div.addf-tax-exempt-form-container .col-25 {
    float: left;
    width: 35%;
    margin-top: 6px;
}

div.addf-tax-exempt-form-container .col-75 {
    float: left;
    width: 65%;
    margin-top: 6px;
}

/* Clear floats after the columns */
div.addf-tax-exempt-form-container .row:after {
    content: "";
    display: table;
    clear: both;
}

#vat_num_input:focus {
    outline: none;
    box-shadow: none;
}

#successMsgDiv {
    animation-name: example;
    animation-duration: 1s;
}


@keyframes example {
    0% {
        top: -10px;
    }

    100% {
        top: 70px;
    }
}

/* Spinner loading on form submit */
#spinner_loading {
    width: 1.7rem;
    height: 1.7rem;
    border: 5px dotted #e0e0e0;
    border-top: 5px solid transparent;
    border-radius: 100%;
    margin: auto;
    visibility: hidden;
    animation: spin 1s infinite linear;
    position: absolute;
    top: 50%;
    left: 93%;
    z-index: 100;
}

#spinner_loading_vat {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px dotted #ffffff;
    border-top: 3px solid transparent;
    border-radius: 100%;
    margin: auto;
    display: none;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

    div.addf-tax-exempt-form-container .col-25,
    div.addf-tax-exempt-form-container .col-75,
    div.addf-tax-exempt-form-container input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}